Add C++ guards. (123955, Harring Figueiredo)
authorMatthias Clasen <maclas@gmx.de>
Tue, 7 Oct 2003 21:32:54 +0000 (21:32 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 7 Oct 2003 21:32:54 +0000 (21:32 +0000)
Tue Oct  7 23:30:00 2003  Matthias Clasen  <maclas@gmx.de>

* gdk-pixbuf-xlib.h: Add C++ guards. (123955, Harring Figueiredo)

contrib/gdk-pixbuf-xlib/ChangeLog
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlib.h

index 31953b9941aed0ebd27e6af3e43cb905ea39f4dd..3a933ecb97a09be842526c8e3384c0c69a8e3f70 100644 (file)
@@ -1,3 +1,7 @@
+Tue Oct  7 23:30:00 2003  Matthias Clasen  <maclas@gmx.de>
+
+       * gdk-pixbuf-xlib.h: Add C++ guards. (123955, Harring Figueiredo)
+
 2002-08-06  jacob berkman  <jacob@ximian.com>
 
        * Makefile.am (lib_LTLIBRARIES): link against xlibs
index b19748671f43bd6a89f28314881b5e03e2965070..04f573e7d4ee6cb5275d05428d2121970540c65e 100644 (file)
 #ifndef GDK_PIXBUF_XLIB_H
 #define GDK_PIXBUF_XLIB_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
 #include <gdk-pixbuf/gdk-pixbuf.h>
 #include <gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.h>
 #include <X11/Xlib.h>
@@ -79,4 +83,9 @@ GdkPixbuf *gdk_pixbuf_xlib_get_from_drawable (GdkPixbuf *dest,
                                              int dest_x, int dest_y,
                                              int width, int height);
 
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+
 #endif /* GDK_PIXBUF_XLIB_H */